Instead of casting out nines, you can also cast out 11s. Start with the rightmost digit, and alternately add and subtract. So with 44689, you'd take 9-8+6-4+4=7. If you land up with a negative number, just add 11 as many times as required. Why does this process work, and can you use this to catch mistakes that you can't catch with casting out 9's?
Why does this work? (Answer: Note that 1000=11*91-1; 100=11*9+1; 10=11*1-1 and so on)Catching mistakes - Casting out 11 can catch transpositions. For example, 7765=6313+1452. Both casting out 9's and 11's will check this. However, if a digit were transposed, i.e. 7675, then casting out 9's wont work but casting out 11's will. (Any idea on what kind of transpositions will it not catch?)